/ Assembly List / LJCNetCommon / NetCommon / Base64ToText

Namespace - LJCNetCommon


Parameters
base64Text - The Base64 string.

Returns

The Text value.

Syntax

C#
public static String Base64ToText(String base64Text)

Decodes a Base64 value to a Text value. (E)

Example

C#
using LJCNetCommon;
        
// Decodes a Base64 value to a Text value.
private static void Base64ToText()
{
  // Setup
  string base64 = NetCommon.TextToBase64("Text");

  // Decodes a Base64 string to Text.
  string text = NetCommon.Base64ToText(base64);
}

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.